Stored Procedures [dbo].[BAEFieldSectionLoad]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@FieldSectionIdint4
SQL Script
create procedure [dbo].[BAEFieldSectionLoad] @FieldSectionId as
int
    AS
    SELECT *
    FROM FieldSection
    WHERE FieldSectionId = @FieldSectionId

GO
Uses